go.uber.org/zap/zapcore.jsonEncoder.AppendUint64 (method, view implemented interface methods)
7 uses
go.uber.org/zap/zapcore (current package)
json_encoder.go#L207: enc.AppendUint64(val)
json_encoder.go#L318: func (enc *jsonEncoder) AppendUint64(val uint64) {
json_encoder.go#L340: func (enc *jsonEncoder) AppendUint(v uint) { enc.AppendUint64(uint64(v)) }
json_encoder.go#L341: func (enc *jsonEncoder) AppendUint32(v uint32) { enc.AppendUint64(uint64(v)) }
json_encoder.go#L342: func (enc *jsonEncoder) AppendUint16(v uint16) { enc.AppendUint64(uint64(v)) }
json_encoder.go#L343: func (enc *jsonEncoder) AppendUint8(v uint8) { enc.AppendUint64(uint64(v)) }
json_encoder.go#L344: func (enc *jsonEncoder) AppendUintptr(v uintptr) { enc.AppendUint64(uint64(v)) }
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |